home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-05-25 | 881 b | 44 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // Platform Scrolling.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateWindow( void );
- void CreateSpriteWorld( void );
- void CreateBallSprite( void );
- void SetUpAnimation( void );
-
- void RunAnimation( void );
- void ShutDown( void );
-
- SW_FUNC void KeySpriteMoveProc(SpritePtr srcSpriteP);
- SW_FUNC void TileChangeProc(SpriteWorldPtr spriteWorldP);
- SW_FUNC void SmoothScrollingWorldMoveProc(
- SpriteWorldPtr spriteWorldP,
- SpritePtr followSpriteP);
-
- void UpdateKeys( void );
- void ResetKeys( void );
-
- void AdvanceLevel( void );
- void KillSprite( void );
- void ResetSprite( void );
-
-
- #ifdef __cplusplus
- }
- #endif
-